home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_VID / BUGS.ZIP;1 / BUGSRC.ZIP / BUGSBC.MAK < prev    next >
Encoding:
Text File  |  1992-09-24  |  644 b   |  24 lines

  1. #-------------------------------------------------------------------------
  2. #
  3. #  BUGSBC.MAK - Make file for Bugs using Borland C++ compiler
  4. #
  5. #  (c) Douglas Boling, 1992
  6. #
  7. #-------------------------------------------------------------------------
  8.  
  9. bugsbc.exe: bugsbc.obj pcscrlib.obj bugsbc.def bugsbc.res
  10.     tlink /Tw c0ws bugsbc pcscrlib, bugsbc.exe,, cws cs import, bugsbc.def
  11.     rc bugsbc.res bugsbc.exe
  12.     copy bugsbc.exe bugs.scr
  13.  
  14. bugsbc.obj : bugsbc.c bugsbc.h
  15.     BCC -c -ms -WE bugsbc.c
  16.  
  17. pcscrlib.obj : pcscrlib.c pcscrlib.h
  18.     BCC -c -ms -WE pcscrlib.c
  19.  
  20. bugsbc.res : bugsbc.rc bugsbc.h
  21.     rc -r bugsbc.rc
  22.  
  23.  
  24.